home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / skysph3 < prev    next >
Text File  |  1997-01-21  |  718b  |  34 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "skysph2.inc"
  7.  
  8. sky_sphere {
  9.   pigment {
  10.     gradient y
  11.     color_map {
  12.       [0.000 0.002 color rgb <1.0, 0.2, 0.0> color rgb <1.0, 0.2, 0.0>]
  13.       [0.002 0.200 color rgb <0.8, 0.1, 0.0> color rgb <0.2, 0.2, 0.3>]
  14.     }
  15.     scale 2
  16.     translate -1
  17.   }
  18.   pigment {
  19.     bozo
  20.     turbulence 0.65
  21.     octaves 6
  22.     omega 0.7
  23.     lambda 2
  24.     color_map {
  25.         [0.0 0.1 color rgb <0.85, 0.85, 0.85> color rgb <0.75, 0.75, 0.75>]
  26.         [0.1 0.5 color rgb <0.75, 0.75, 0.75> color rgbt <1, 1, 1, 1>]
  27.         [0.5 1.0 color rgbt <1, 1, 1, 1> color rgbt <1, 1, 1, 1>]
  28.     }
  29.     scale <0.2, 0.5, 0.2>
  30.   }
  31.   rotate -135*x
  32. }
  33.  
  34.